home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000386_fdc@columbia.edu_Fri Mar 21 10:17:26 EST 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  45 lines

  1. Article: 14185 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Old Mode-Line Off Command
  6. Date: 21 Mar 2003 10:17:20 -0500
  7. Organization: Columbia University
  8. Lines: 28
  9. Message-ID: <b5fae0$ov5$1@watsol.cc.columbia.edu>
  10. References: <PHCea.58155$Dp.42148@fe01.atl2.webusenet.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1048259841 7853 128.59.39.139 (21 Mar 2003 15:17:21 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 21 Mar 2003 15:17:21 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14185
  16.  
  17. In article <PHCea.58155$Dp.42148@fe01.atl2.webusenet.com>,
  18. Dave <staabbattery@springnet1.com> wrote:
  19. : In the old version of Kermit I was using Mode-line Off was used.  What
  20. : command would I use in K-95 to do the same function?
  21. (a) Terminal types that are normally 24 lines (VT100, etc) have a status
  22.     line by default.  Terminal types that are normally 25 lines (e.g. ANSI,
  23.     Linux) do not.  So one way to not have a status is to choose a terminal
  24.     type that does not have one.
  25.  
  26. (b) If you use the Dialer, go to the Terminal Settings page for the entry
  27.     in question and uncheck "Status line".
  28.  
  29. (c) The command to make the terminal-screen status line go away is SET
  30.     TERMINAL STATUSLINE OFF.  For the command screen, it's SET COMMAND
  31.     STATUSLINE OFF.
  32.  
  33. (d) The GUI version of Kermit 95 also has a "gray" status bar below the
  34.     (normally cyan) terminal-window one.  This can be disabled with the
  35.     --nostatusbar command-line option (which can also be specified in
  36.     the Dialer on the GUI Settings page).
  37.  
  38. (e) You can "toggle" the status line with the \Kstatus keyboard verb,
  39.     which you can assign to the key of your choice, e.g.
  40.  
  41.        set key \377 \Kstatus  ; Toggle Status Line on F10
  42.  
  43. - Frank
  44.